home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DDJMAG / DDJ9310.ZIP / DFPP03.ZIP / LABEL.H < prev    next >
C/C++ Source or Header  |  1993-09-24  |  348b  |  18 lines

  1. // ------------ label.h
  2.  
  3. #ifndef LABEL_H
  4. #define LABEL_H
  5.  
  6. #include "textbox.h"
  7.  
  8. class Label : public TextBox    {
  9.     void InitLabel(const char *txt);
  10. public:             
  11.     Label(const char *txt, int lf, int tp, int wd=0,
  12.                             DFWindow *par = 0);
  13.     Label(const char *txt, int lf, int tp, DFWindow *par = 0);
  14.     virtual void Paint();
  15. };
  16.  
  17. #endif
  18.